home *** CD-ROM | disk | FTP | other *** search
/ NeXT Enterprise Objects Framework 1.1 / NeXT Enterprise Objects Framework 1.1.iso / NextDeveloper / Examples / EnterpriseObjects / RadioMatrixAssociation / AppController.h next >
Encoding:
Text File  |  1994-09-03  |  765 b   |  29 lines

  1. /*--------------------------------------------------------------------------
  2.  *    AppController.h
  3.  *
  4.  * You may freely copy, distribute, and reuse the code in this example.
  5.  * NeXT disclaims any warranty of any kind, expressed or  implied, as to its
  6.  * fitness for any particular use.
  7.  *
  8.  *
  9.  *    A controller class for the Radio Button association example.
  10.  *
  11.  *
  12.  *------------------------------------------------------------------------*/
  13. #import <foundation/NSObject.h>
  14.  
  15.  
  16.  
  17. @interface AppController : NSObject
  18. {
  19.     id    eoController;
  20.     id    dataSource;
  21. }
  22.  
  23. /*--------------------------------------------------------------------------
  24.  *    Cover Methods for EOController Actions
  25.  *------------------------------------------------------------------------*/
  26. - fetch: sender;
  27.  
  28. @end
  29.